Added InitCheck() and GetErr()

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@606 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Tyler Dauwalder
2002-08-06 08:30:44 +00:00
parent c4dc6c7c5a
commit 9d97f52d8d
2 changed files with 30 additions and 7 deletions
+6
View File
@@ -13,9 +13,14 @@
namespace Sniffer {
class Err;
class Range {
public:
Range(int32 start, int32 end);
status_t InitCheck() const;
Err* GetErr() const;
int32 Start() const;
int32 End() const;
@@ -24,6 +29,7 @@ public:
private:
int32 fStart;
int32 fEnd;
status_t fCStatus;
};
}