- C3d aggiornamento delle librerie.
This commit is contained in:
Dario Sassi
2020-09-14 16:42:31 +00:00
parent 555eae9594
commit e8f0fa2d27
332 changed files with 59308 additions and 52918 deletions
+24
View File
@@ -0,0 +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; }
};
#endif