Implemented the Preprocessor interface.
[aesalon.git] / include / common / Preprocessor.h
blob91644c16cc441181a778af6bed2930c60735b02a
1 /**
2 Aesalon, a tool to visualize a program's behaviour at run-time.
3 Copyright (C) 2010, Aesalon Development Team.
5 Aesalon is distributed under the terms of the GNU GPLv3. For more
6 licensing information, see the file LICENSE included with the distribution.
8 @file include/common/Preprocessor.h
12 #ifndef AesalonCommon_Preprocessor_H
13 #define AesalonCommon_Preprocessor_H
15 #include "monitor/config/Vault.h"
17 namespace Common {
19 typedef void (*Preprocessor)(Monitor::Config::Vault *vault);
21 } // namespace Common
23 #endif