mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 05:57:44 +00:00
Shell: Move everything to the Shell namespace
Also provide a basic default-constructor.
This commit is contained in:
parent
34039d6639
commit
f164b808b5
17 changed files with 115 additions and 17 deletions
|
@ -33,6 +33,8 @@
|
|||
#include <AK/Vector.h>
|
||||
#include <LibCore/ElapsedTimer.h>
|
||||
|
||||
namespace Shell {
|
||||
|
||||
class FileDescriptionCollector {
|
||||
public:
|
||||
FileDescriptionCollector() { }
|
||||
|
@ -59,3 +61,5 @@ private:
|
|||
Vector<SavedFileDescriptor> m_saves;
|
||||
FileDescriptionCollector m_collector;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue