소스 검색

[cpp] Add toString function to ConstCharStart

hughsando 10 년 전
부모
커밋
22392b0730
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      std/cpp/ConstCharStar.hx

+ 3 - 0
std/cpp/ConstCharStar.hx

@@ -7,6 +7,9 @@ abstract ConstCharStar( RawConstPointer<Char> ) to(RawConstPointer<Char>)
    @:from
    static public inline function fromString(s:String) return new ConstCharStar(s);
 
+   @:to
+   public inline function toString():String return new String(untyped this);
+
     @:to @:extern
     public inline function toPointer() return this;
 }