SOL9 2.0 Class: Locale

 SOL9 C++ Class Library  SOL9 Samples  SOL9 Tutorial  SOL9 FAQ  SOL9 ClassTree 

Source code

/*
 * Locale.h 
 * Copyright (c) 2011 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED. 
 */


// SOL9
// 2009/10/23
#pragma once

#include <sol\Object.h>


namespace SOL {

class Locale :public Object {

public:
    Locale()
    {
        _tsetlocale(LC_ALL, _T(""));
    }

public:
    Locale(DWORD type, const TCHAR* string)
    {
        _tsetlocale(type, string);
    }
};

}


Last modified: 1 Feb 2012

Copyright (c) 2009-2012 Antillia.com ALL RIGHTS RESERVED.