mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 09:08:20 +00:00
serialization compiles.
Not entirely sure if it works too...
This commit is contained in:
parent
ac0e211c6c
commit
a37ffab0ea
7 changed files with 89 additions and 4 deletions
|
@ -11,17 +11,17 @@ class CardinalityCounter;
|
|||
|
||||
class CardinalityVal: public OpaqueVal {
|
||||
public:
|
||||
CardinalityVal();
|
||||
~CardinalityVal();
|
||||
bool Init(CardinalityCounter*);
|
||||
bool IsValid() const { return valid; };
|
||||
CardinalityCounter* Get() { return c; };
|
||||
CardinalityVal();
|
||||
~CardinalityVal();
|
||||
|
||||
private:
|
||||
bool valid;
|
||||
CardinalityCounter* c;
|
||||
|
||||
// DECLARE_SERIAL(CardinalityVal); Fixme?
|
||||
DECLARE_SERIAL(CardinalityVal);
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue