// Syncify // // Douglas Thrift // // $Id$ #ifndef _Syncify_hpp_ #define _Syncify_hpp_ #include #ifdef MENES_PRAGMA_ONCE #pragma once #endif #include #include #include #include #include #include "Matcher/Matcher.hpp" #include "Error.hpp" struct Syncify { Syncify(const ext::String& local, const ext::String& remote, const ext::String& pattern); ~Syncify(); static ext::String program; static bool debug; Matcher pattern; void syncify(const ext::String& local, const ext::String& remote); }; #endif//_Syncify_hpp_