Nebula
Loading...
Searching...
No Matches
tbuifile.h
Go to the documentation of this file.
1#pragma once
2//------------------------------------------------------------------------------
9//------------------------------------------------------------------------------
10
11#include "io/filestream.h"
12#include "util/string.h"
13#include "tb_system.h"
14
15//------------------------------------------------------------------------------
16namespace TBUI
17{
18class TBUIFile : public tb::TBFile
19{
20public:
22 TBUIFile(const Util::String& filepath, IO::Stream::AccessMode accessMode);
24 ~TBUIFile();
25
27 long Size() override;
29 size_t Read(void* buf, size_t elemSize, size_t count) override;
31 bool IsOpen() const;
32
33private:
35};
36
37//------------------------------------------------------------------------------
38/*
39*/
40inline bool
42{
43 return fileStream && fileStream->IsOpen();
44}
45
46} // namespace TBUI
AccessMode
access modes
Definition stream.h:38
Nebula's smart pointer class which manages the life time of RefCounted objects.
Definition ptr.h:38
long Size() override
Definition tbuifile.cc:63
Ptr< IO::FileStream > fileStream
Definition tbuifile.h:34
size_t Read(void *buf, size_t elemSize, size_t count) override
Definition tbuifile.cc:72
TBUIFile(const Util::String &filepath, IO::Stream::AccessMode accessMode)
Definition tbuifile.cc:37
bool IsOpen() const
Definition tbuifile.h:41
~TBUIFile()
Definition tbuifile.cc:51
Turbobadger UI Batch.
Definition tbuibatch.h:18
Nebula's universal string class.
Definition String.cs:8