Browse Source

Added TODO to File class

- added TODO for comparison operator extension
Patrick 4 years ago
parent
commit
1621b97927
1 changed files with 2 additions and 2 deletions
  1. 2 2
      source/io/File.cpp

+ 2 - 2
source/io/File.cpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-15
- * Changed:         2020-08-17
+ * Changed:         2020-08-18
  *
  * */
 
@@ -25,7 +25,7 @@ ls_std::File::File(std::string _absoluteFilePath) : Class("File"),
 absoluteFilePath(ls_std::File::_normalizePath(std::move(_absoluteFilePath)))
 {}
 
-bool ls_std::File::operator==(File &_file)
+bool ls_std::File::operator==(File &_file) // TODO: also compare executable, readable, writable flag
 {
   return this->absoluteFilePath == _file.getAbsoluteFilePath();
 }