File: module.h

package info (click to toggle)
xplc 0.3.13-12.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,536 kB
  • sloc: sh: 2,739; cpp: 2,697; ansic: 1,127; makefile: 64; perl: 6
file content (23 lines) | stat: -rw-r--r-- 597 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
 *
 * This file is example code for XPLC (http://xplc.sourceforge.net/),
 * and is put into the public domain.
 */

#ifndef __EXAMPLE_MODULE_H__
#define __EXAMPLE_MODULE_H__

#include "simple.h"

/*
 * This is private to the module.
 *
 * The content of this file is completely internal to the module, it
 * is only used to share this prototype between simple.cpp and
 * module.cpp. Client code using this component do not need this file
 * at all.
 */

IObject* getSimpleComponent();

#endif /* __EXAMPLE_MODULE_H__ */