Browse Subversion Repository
Contents of /jpinput/RomanCreator.h
Parent Directory
| Revision Log
Revision 336 -
( show annotations)
( download)
( as text)
Sun Apr 6 21:40:53 2008 UTC
(16 years ago)
by satofumi
File MIME type: text/x-chdr
File size: 552 byte(s)
convert string: char -> Uint16
| 1 |
#ifndef ROMAN_CREATOR_H |
| 2 |
#define ROMAN_CREATOR_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief [}üÍóâÖĚϡ |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
*/ |
| 12 |
|
| 13 |
#include <SDL.h> |
| 14 |
#include <memory> |
| 15 |
#include <vector> |
| 16 |
|
| 17 |
|
| 18 |
namespace beego { |
| 19 |
class RomanCreator { |
| 20 |
RomanCreator(const RomanCreator& rhs); |
| 21 |
RomanCreator& operator = (const RomanCreator& rhs); |
| 22 |
|
| 23 |
struct pImpl; |
| 24 |
const std::auto_ptr<pImpl> pimpl; |
| 25 |
|
| 26 |
public: |
| 27 |
RomanCreator(void); |
| 28 |
~RomanCreator(void); |
| 29 |
void convert(std::vector<Uint16>& dst, const Uint16* input); |
| 30 |
}; |
| 31 |
}; |
| 32 |
|
| 33 |
#endif /* !ROMAN_CREATOR_H */ |
|