Fawkes API Fawkes Development Version
openprs_manager.h
1
2/***************************************************************************
3 * openprs_manager.h - OpenPRS manager aspect for Fawkes
4 *
5 * Created: Mon Aug 18 15:24:17 2014
6 * Copyright 2006-2013 Tim Niemueller [www.niemueller.de]
7 ****************************************************************************/
8
9/* This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version. A runtime exception applies to
13 * this software (see LICENSE.GPL_WRE file mentioned below for details).
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Library General Public License for more details.
19 *
20 * Read the full text in the LICENSE.GPL_WRE file in the doc directory.
21 */
22
23#ifndef _PLUGINS_OPENPRS_ASPECT_OPENPRS_MANAGER_H_
24#define _PLUGINS_OPENPRS_ASPECT_OPENPRS_MANAGER_H_
25
26#include <aspect/aspect.h>
27#include <core/utils/lockptr.h>
28#include <plugins/openprs/aspect/openprs_kernel_manager.h>
29
30namespace fawkes {
31
32class OpenPRSManagerAspectIniFin;
33
34class OpenPRSManagerAspect : public virtual Aspect
35{
37
38public:
40 virtual ~OpenPRSManagerAspect();
41
42protected:
44};
45
46} // end namespace fawkes
47
48#endif
Fawkes aspect base class.
Definition: aspect.h:32
LockPtr<> is a reference-counting shared lockable smartpointer.
Definition: lockptr.h:55
OpenPRSManagerAspect initializer/finalizer.
Thread aspect access the OpenPRS kernel manager.
virtual ~OpenPRSManagerAspect()
Virtual empty destructor.
LockPtr< OpenPRSKernelManager > openprs_kernel_mgr
OpenPRS kenerl manager.
Fawkes library namespace.