Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
dillo /
[ HOME SHELL ]
Name
Size
Permission
Action
AUTHORS
2.31
KB
-rw-r--r--
Cache.txt.gz
2.35
KB
-rw-r--r--
Cookies.txt
2.35
KB
-rw-r--r--
Dillo.txt
3.51
KB
-rw-r--r--
Dpid.txt.gz
3.83
KB
-rw-r--r--
Dw.txt
217
B
-rw-r--r--
HtmlParser.txt
3.54
KB
-rw-r--r--
IO.txt.gz
7.49
KB
-rw-r--r--
Images.txt.gz
1.79
KB
-rw-r--r--
Imgbuf.txt.gz
2.64
KB
-rw-r--r--
NC_design.txt.gz
1.91
KB
-rw-r--r--
NEWS.Debian.gz
299
B
-rw-r--r--
NEWS.gz
494
B
-rw-r--r--
README
2
KB
-rw-r--r--
README.Debian
351
B
-rw-r--r--
Selection.txt.gz
2.16
KB
-rw-r--r--
changelog.Debian.gz
6.89
KB
-rw-r--r--
changelog.gz
35.04
KB
-rw-r--r--
copyright
2.38
KB
-rw-r--r--
dillorc.gz
5.14
KB
-rw-r--r--
dw-changes.doc
3.95
KB
-rw-r--r--
dw-example-screenshot.png
3.72
KB
-rw-r--r--
dw-images-and-backgrounds.doc....
2.73
KB
-rw-r--r--
dw-layout-views.doc.gz
3.22
KB
-rw-r--r--
dw-layout-widgets.doc.gz
3.24
KB
-rw-r--r--
dw-map.doc
2.19
KB
-rw-r--r--
dw-overview.doc.gz
1.8
KB
-rw-r--r--
dw-size-of-widget.png
2.76
KB
-rw-r--r--
dw-style-box-model.png
5
KB
-rw-r--r--
dw-style-length-absolute.png
756
B
-rw-r--r--
dw-style-length-percentage.png
1.08
KB
-rw-r--r--
dw-style-length-relative.png
1.06
KB
-rw-r--r--
dw-textblock-collapsing-spaces...
641
B
-rw-r--r--
dw-textblock-collapsing-spaces...
521
B
-rw-r--r--
dw-textblock-collapsing-spaces...
802
B
-rw-r--r--
dw-textblock-collapsing-spaces...
586
B
-rw-r--r--
dw-usage.doc.gz
3.79
KB
-rw-r--r--
dw-viewport-with-scrollbar.png
755
B
-rw-r--r--
dw-viewport-without-scrollbar....
542
B
-rw-r--r--
dw-widget-sizes.doc.gz
2.44
KB
-rw-r--r--
fltk-problems.doc.gz
1.75
KB
-rw-r--r--
index.doc
1.37
KB
-rw-r--r--
lout.doc
3.06
KB
-rw-r--r--
rounding-errors.doc
909
B
-rw-r--r--
uml-legend.doc.gz
1.46
KB
-rw-r--r--
user_help.html
13.66
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lout.doc
/** \page lout Lots of Useful Tools In the "lout" directory, there are some common base functionality for C++. Most is described as doxygen comments, this text gives an overview. <h2>Common Base Class</h2> Many classes are derived from lout::object::Object, which defines some general methods. See there for more information. For the case, that you need primitive C++ types, there are some wrappers: <table> <tr><th>C++ Type <th>Wrapper Class <tr><td>void* <td>lout::object::Pointer <tr><td>specific pointer <td>lout::object::TypedPointer (template class) <tr><td>int <td>lout::object::Integer <tr><td>const char* <td>lout::object::ConstString <tr><td>char* <td>lout::object::String </table> <h2>Containers</h2> In the namespace lout::container, several container classes are defined, which all deal with instances of lout::object::Object. <h3>Untyped Containers</h3> In lout::container::untyped, there are the following containers: <ul> <li>lout::container::untyped::Vector, a dynamically increases array, <li>lout::container::untyped::List, a linked list, <li>lout::container::untyped::HashTable, a hash table, and <li>lout::container::untyped::Stack, a stack. </ul> All provide specific methods, but since they have a common base class, lout::container::untyped::Collection, they all provide iterators, by the method lout::container::untyped::Collection::iterator. <h3>Typed Containers</h3> lout::container::typed provides wrappers for the container classes defined in lout::container::untyped, which are more type safe, by using C++ templates. <h2>Signals</h2> For how to connect objects at run-time (to reduce dependencies), take a look at the lout::signal namespace. There is also a base class lout::signal::ObservedObject, which implements signals for deletion. <h2>Debugging</h2> In debug.hh, there are some some useful macros for debugging messages, see the file for mor informations. <h2>Identifying Classes at Runtime</h2> If the class of an object must be identified at runtime, lout::identity::IdentifiableObject should be used as the base class, see there for more details. <h2>Miscellaneous</h2> The lout::misc namespace provides several miscellaneous stuff: <ul> <li> In some contexts, it is necessary to compare objects (less/greater), for this, also lout::misc::Comparable must be implemented. For example., lout::container::untyped::Vector::sort and lout::container::typed::Vector::sort cast the elements to lout::misc::Comparable. This can be mixed with lout::object::Object. <li> lout::misc::SimpleVector, a simple, template based vector class (not depending on lout::object::Object) (a variant for handling a special case in an efficient way is lout::misc::NotSoSimpleVector), <li> lout::misc::StringBuffer, class for fast concatenation of a large number of strings, <li> lout::misc::BitSet implements a bitset. <li> useful (template) functions (lout::misc::min, lout::misc::max), and <li> some functions useful for runtime checks (lout::misc::assert, lout::misc::assertNotReached). </ul> */
Close