bytes.h
来自「一个语言识别引擎」· C头文件 代码 · 共 66 行
H
66 行
// -*- mode:C++; tab-width:4; c-basic-offset:4; indent-tabs-mode:nil -*-
/*
* Copyright (C) 2006 Paul Fitzpatrick
* CopyPolicy: Released under the terms of the GNU GPL v2.0.
*
*/
#ifndef _YARP2_BYTES_
#define _YARP2_BYTES_
namespace yarp {
namespace os {
class Bytes;
}
}
/**
* A simple abstraction for a block of bytes. This class is not
* responsible for allocating or destroying those bytes, just
* recording their location.
*/
class yarp::os::Bytes {
public:
/**
* Default constructor. No data present.
*/
Bytes() {
data = 0;
len = 0;
}
/**
* Constructor.
* @param data address of data block
* @param len length of data block
*/
Bytes(char *data, int len) {
this->data = data;
this->len = len;
}
/**
* @return length of data block
*/
int length() const {
return len;
}
/**
* @return address of data block
*/
char *get() const {
return data;
}
private:
char *data;
int len;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?