Inherits InputFile.
A file generated by the application.
Public Fields | |
string | original_path_ |
Local path to a file from which the file is generated; may be empty if there is no such file. | |
string | conversion_ |
String specifying the conversion applied to the original file; must be persistent across application restarts. Conversions beginning with '#' are reserved for internal TDLib usage. | |
int53 | expected_size_ |
Expected size of the generated file, in bytes; 0 if unknown. | |
Public Instance Methods | |
inputFileGenerated () | |
inputFileGenerated (string const &original_path_, string const &conversion_, int53 expected_size_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = -1333385216 |
Identifier uniquely determining a type of the object. | |
A file generated by the application.
inputFileGenerated | ( | string const & | original_path_, |
string const & | conversion_, | ||
int53 | expected_size_ | ||
) |
A file generated by the application.
[in] | original_path_ | Local path to a file from which the file is generated; may be empty if there is no such file. |
[in] | conversion_ | String specifying the conversion applied to the original file; must be persistent across application restarts. Conversions beginning with '#' are reserved for internal TDLib usage. |
[in] | expected_size_ | Expected size of the generated file, in bytes; 0 if unknown. |
|
finalvirtual |