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
|
#ifndef Fireworks_Core_FWParameterSetterEditorBase_h
#define Fireworks_Core_FWParameterSetterEditorBase_h
// -*- C++ -*-
//
// Package: Core
// Class : FWParameterSetterEditorBase
//
/**\class FWParameterSetterEditorBase FWParameterSetterEditorBase.h Fireworks/Core/interface/FWParameterSetterEditorBase.h
Description: <one line class summary>
Usage:
<usage>
*/
//
// Original Author:
// Created: Thu Jun 26 11:17:59 EDT 2008
//
// system include files
// user include files
// forward declarations
class FWParameterSetterEditorBase {
public:
FWParameterSetterEditorBase();
virtual ~FWParameterSetterEditorBase();
// ---------- const member functions ---------------------
// ---------- static member functions --------------------
// ---------- member functions ---------------------------
virtual void updateEditor();
FWParameterSetterEditorBase(const FWParameterSetterEditorBase&) = delete; // stop default
const FWParameterSetterEditorBase& operator=(const FWParameterSetterEditorBase&) = delete; // stop default
private:
// ---------- member data --------------------------------
};
#endif
|