Kind-of worked on the R-Tree; not really enough time to do much.
[aesalon.git] / include / monitor / ArgumentParser.h
blob41922501f245b634b44f4d5e784dcd879e96f2f6
1 /** Aesalon, a tool to visualize program behaviour in real time.
2 Copyright (C) 2009-2011, Aesalon development team.
4 Aesalon is distributed under the terms of the GNU GPLv3. See
5 the included file LICENSE for more information.
7 @file include/monitor/ArgumentParser.h
8 */
10 #ifndef AesalonMonitor_ArgumentParser_H
11 #define AesalonMonitor_ArgumentParser_H
13 #include "config/Vault.h"
15 namespace Monitor {
17 class ArgumentParser {
18 public:
19 static int parse(Config::Vault *vault, char **argv);
22 } // namespace Monitor
24 #endif