1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#ifndef Fireworks_Core_FWConfigurable_h
#define Fireworks_Core_FWConfigurable_h
// -*- C++ -*-
//
// Package: Core
// Class : FWConfigurable
//
/**\class FWConfigurable FWConfigurable.h Fireworks/Core/interface/FWConfigurable.h
Description: <one line class summary>
Usage:
<usage>
*/
//
// Original Author: Chris Jones
// Created: Sun Feb 24 14:35:47 EST 2008
//
// system include files
// user include files
// forward declarations
class FWConfiguration;
class FWConfigurable {
public:
FWConfigurable();
virtual ~FWConfigurable();
// ---------- const member functions ---------------------
virtual void addTo(FWConfiguration&) const = 0;
// ---------- static member functions --------------------
// ---------- member functions ---------------------------
virtual void setFrom(const FWConfiguration&) = 0;
FWConfigurable(const FWConfigurable&) = delete; // stop default
const FWConfigurable& operator=(const FWConfigurable&) = delete; // stop default
private:
// ---------- member data --------------------------------
};
#endif
|