Changeset 1044 for cpp/frams/model/similarity/simil-match.h
- Timestamp:
- 12/10/20 22:33:22 (4 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/model/similarity/simil-match.h
r1043 r1044 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-20 19Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2020 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 26 26 SimilMatching(const SimilMatching &Source); 27 27 ~SimilMatching(); 28 int GetObjectSize(int Obj);29 void Match(int Obj0, int Index0, int Obj1, int Index1);30 bool IsMatched(int Obj, int Index);31 int GetMatchedIndex(int Obj, int index);32 bool IsFull();33 bool IsEmpty();34 void Empty();35 void PrintMatching();28 int getObjectSize(int Obj); 29 void match(int Obj0, int Index0, int Obj1, int Index1); 30 bool isMatched(int Obj, int Index); 31 int getMatchedIndex(int Obj, int index); 32 bool isFull(); 33 bool isEmpty(); 34 void empty(); 35 void printMatching(); 36 36 }; 37 37
Note: See TracChangeset
for help on using the changeset viewer.