00001 00021 #ifndef GALOIS_EXECUTABLE_H 00022 #define GALOIS_EXECUTABLE_H 00023 00024 namespace Galois { 00025 00026 class Executable { 00027 public: 00029 virtual void operator()() = 0; 00030 }; 00031 00032 } 00033 00034 #endif