Updated a whole bunch of files, started adding the commands
[vimicxx.git] / src / cmd_about.h
blobef42672f742cfee34971ad8a3572342b7702003a
1 /*******************************************************************************
2 ********************************************************************************
4 Copyright (c) 2008 Ahmed S. Badran
6 Licensed under the FreeBSD License (see LICENSE)
8 Filename: cmd_about.h
9 Description: An about command.
10 Created: 12/15/2008 11:13:36 PM PST
11 Author: Ahmed S. Badran (Ahmed B.), ahmed.badran@gmail.com
13 ********************************************************************************
14 *******************************************************************************/
15 #ifndef CMD_ABOUT_INC
16 #define CMD_ABOUT_INC
17 #include <vector>
18 #include <string>
19 #include "cmd_if.h"
20 namespace vimicxx
22 class cmd_about: public cmd_if
24 public:
25 cmd_about(const std::string& n);
26 bool execute(conf* cnf) const;
27 const std::string err_msg() const;
28 ~cmd_about();
29 private:
30 const cmd_about& operator=(const cmd_about&);
31 private:
32 std::string name;
33 const std::string error;
36 #endif // ----- #ifndef CMD_ABOUT_INC -----