File: data.h

package info (click to toggle)
libopkele 2.0.4-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,844 kB
  • ctags: 1,075
  • sloc: sh: 10,137; cpp: 4,879; makefile: 175; xml: 82; ansic: 70; sql: 55
file content (20 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __OPKELE_DATA_H
#define __OPKELE_DATA_H

/**
 * @brief the main opkele namespace
 */
namespace opkele {

    /**
     * @brief internal data opkele namespace
     */
    namespace data {
	extern const char *_default_p;
	extern const char *_default_g;
	extern const char *_iname_leaders;
	extern const char *_whitespace_chars;
    }
}

#endif /* __OPKELE_DATA_H */