Skip to content

Commit

Permalink
Initial numpunctByname function.
Browse files Browse the repository at this point in the history
  • Loading branch information
HaxyM committed Aug 22, 2024
1 parent 23d5697 commit 0eac910
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/crap/locale
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include "locale.d/isuppervalue.h"
#include "locale.d/isxdigitvalue.h"
#include "locale.d/locale.h"
#include "locale.d/numpunctbyname.h"

#endif

17 changes: 17 additions & 0 deletions include/crap/locale.d/numpunctbyname.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#ifndef CRAP_LOCALE_NUMPUNCTBYNAME
#define CRAP_LOCALE_NUMPUNCTBYNAME

#include "../string.d/string.h"

namespace crap
{
template <class> struct numpunctByname;

template <class CharType, CharType ... Chars>
struct locale <string<CharType, Char...> >
{
//TODO: Implement.
};
}
#endif

0 comments on commit 0eac910

Please sign in to comment.