~karsten.klagges/openwns-allinone/trunk

« back to all changes in this revision

Viewing changes to modules/loadgen/applications/src/Applications.hpp

  • Committer: Karsten Klagges
  • Date: 2014-08-06 13:03:56 UTC
  • Revision ID: kks@comnets.rwth-aachen.de-20140806130356-aiav38l8m4mm7wup
fixed indentation and precompiled header issue

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 *
26
26
 ******************************************************************************/
27
27
 
28
 
#ifndef APPLICATIONS_APPLICATIONS_HPP
29
 
#define APPLICATIONS_APPLICATIONS_HPP
30
 
 
 
28
#pragma once
31
29
#include <openwns/module/Module.hpp>
32
30
 
33
31
namespace applications {
34
 
        class Applications
35
 
                : public wns::module::Module<Applications>
36
 
        {
37
 
        public:
38
 
                Applications(const wns::pyconfig::View& _pyConfigView);
39
 
                virtual ~Applications();
40
 
                virtual void configure();
41
 
                virtual void startUp();
42
 
                virtual void shutDown();
43
 
        };
44
 
} // namespace applications
45
 
 
46
 
#endif // APPLICATIONS_APPLICATIONS_HPP
 
32
class Applications :
 
33
    public wns::module::Module<Applications>
 
34
{
 
35
public:
 
36
    Applications(const wns::pyconfig::View& _pyConfigView);
 
37
    virtual ~Applications();
 
38
    virtual void configure();
 
39
    virtual void startUp();
 
40
    virtual void shutDown();
 
41
};
 
42
}