- C3d aggiornamento delle librerie.
This commit is contained in:
Dario Sassi
2020-12-24 11:59:30 +00:00
parent e771270eb2
commit 45803fb2d7
354 changed files with 24318 additions and 20771 deletions
+23 -23
View File
@@ -1,24 +1,24 @@
////////////////////////////////////////////////////////////////////////////////
//
////////////////////////////////////////////////////////////////////////////////
#ifndef __BINOBJ_H
#define __BINOBJ_H
//------------------------------------------------------------------------------
// бинарный объект
// ---
struct BinaryObj {
void * p;
void * pSort;
BinaryObj( void *otherId, void *otherP ) : p( otherId ), pSort( otherP ) {}
bool operator == ( const BinaryObj &o ) const { return pSort == o.pSort; }
bool operator < ( const BinaryObj &o ) const { return pSort < o.pSort; }
};
////////////////////////////////////////////////////////////////////////////////
//
////////////////////////////////////////////////////////////////////////////////
#ifndef __BINOBJ_H
#define __BINOBJ_H
//------------------------------------------------------------------------------
// бинарный объект
// ---
struct BinaryObj {
void * p;
void * pSort;
BinaryObj( void *otherId, void *otherP ) : p( otherId ), pSort( otherP ) {}
bool operator == ( const BinaryObj &o ) const { return pSort == o.pSort; }
bool operator < ( const BinaryObj &o ) const { return pSort < o.pSort; }
};
#endif