summaryrefslogtreecommitdiffabout
path: root/include/sitecing/acomponent.h
Unidiff
Diffstat (limited to 'include/sitecing/acomponent.h') (more/less context) (ignore whitespace changes)
-rw-r--r--include/sitecing/acomponent.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sitecing/acomponent.h b/include/sitecing/acomponent.h
index 160e854..461f8a6 100644
--- a/include/sitecing/acomponent.h
+++ b/include/sitecing/acomponent.h
@@ -1,27 +1,28 @@
1#ifndef __SITECING_ACOMPONENT_H 1#ifndef __SITECING_ACOMPONENT_H
2#define __SITECING_ACOMPONENT_H 2#define __SITECING_ACOMPONENT_H
3 3
4#include <cstdarg>
4#include "sitecing/sitecing_interface.h" 5#include "sitecing/sitecing_interface.h"
5 6
6/** 7/**
7 * @file 8 * @file
8 * @brief The acomponent class declaration. 9 * @brief The acomponent class declaration.
9 */ 10 */
10 11
11namespace sitecing { 12namespace sitecing {
12 13
13 /** 14 /**
14 * An abstract base class for sitecing components. 15 * An abstract base class for sitecing components.
15 */ 16 */
16 class acomponent { 17 class acomponent {
17 public: 18 public:
18 /** 19 /**
19 * Pointer to the interface object, used to communicate with the 20 * Pointer to the interface object, used to communicate with the
20 * site-C-ing core. 21 * site-C-ing core.
21 */ 22 */
22 sitecing_interface *__SCIF; 23 sitecing_interface *__SCIF;
23 24
24 acomponent(); 25 acomponent();
25 virtual ~acomponent(); 26 virtual ~acomponent();
26 27
27 /** 28 /**