/*
* ByteArray.h
* Copyright (c) 2009 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
*/
// SOL9 2009/02/17
#pragma once
#include <sol\Bytes.h>
#include <sol\InvalidArgumentException.h>
#include <sol\OutOfRangeException.h>
/**
* Bytes class
*/
namespace SOL {
class ByteArray :public Bytes {
public:
/**
* Constructor
*/
ByteArray()
:Bytes()
{
}
public:
/**
* Constructor
*/
ByteArray(uint size)
:Bytes(size)
{
}
public:
/**
* Constructor
*/
ByteArray(unsigned char* data, uint size)
:Bytes(data, size)
{
}
public:
/**
* Destructor
*/
~ByteArray()
{
}
};
}
|