Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00031
00032
00033 #pragma once
00034
00035
00036 #include "../api_core.h"
00037 #include "sharedptr.h"
00038
00039 class CL_DataBuffer_Impl;
00040
00044 class CL_API_CORE CL_DataBuffer
00045 {
00048
00049 public:
00051 CL_DataBuffer();
00052
00053 CL_DataBuffer(int size);
00054
00055 CL_DataBuffer(const void *data, int size);
00056
00057 CL_DataBuffer(const CL_DataBuffer &data, int pos, int size = -1);
00058
00059 ~CL_DataBuffer();
00060
00061
00065
00066 public:
00068 char *get_data();
00069
00070 const char *get_data() const;
00071
00073 int get_size() const;
00074
00076 int get_capacity() const;
00077
00079 char &operator[](int i);
00080
00081 const char &operator[](int i) const;
00082
00083 char &operator[](unsigned int i);
00084
00085 const char &operator[](unsigned int i) const;
00086
00088 bool is_null() const;
00089
00090
00094
00095 public:
00096 CL_DataBuffer &operator =(const CL_DataBuffer ©);
00097
00099 void set_size(int size);
00100
00102 void set_capacity(int capacity);
00103
00104
00108
00109 private:
00110 CL_SharedPtr<CL_DataBuffer_Impl> impl;
00112 };
00113
00114