#ifdef EnableOutput #pragma once #include #include "Global.h" class Output; typedef std::vector MyOutputVector; class Output { public: Output(String key); ~Output(); void execute(String value); private: String _key; }; extern MyOutputVector* myOutput; extern void outputValue(); extern void outputExecute(); #endif