karan-aithal / buzvis-

C++ alternative of BUZVIS
0 stars 0 forks source link

Basic Structure and BoilerPlate #2

Closed karan-aithal closed 1 day ago

karan-aithal commented 1 day ago

buzvis-app/

├── CMakeLists.txt
├── src/ # Source Code Directory │ ├── main.cpp # Main Application Entry │ ├── app/ # Core Application Logic │ │ ├── BuzvisApp.h # Header for Main Application Class │ │ └── BuzvisApp.cpp # Main Application Class Implementation
│ ├── modules/ # Feature Modules (Task, Calendar, Communication, etc.) │ │ ├── CalendarManager.h │ │ ├── CalendarManager.cpp │ │ ├── TaskManager.h │ │ ├── TaskManager.cpp │ │ ├── CommunicationHandler.h │ │ ├── CommunicationHandler.cpp │ ├── utils/ # Utility Classes (Singletons, Helpers, etc.) │ │ ├── Singleton.h
│ ├── ui/ # UI Files and Resources (Qt Designer files) │ │ ├── mainwindow.ui # Main UI Design (XML) │ │ ├── mainwindow.h │ │ ├── mainwindow.cpp ├── include/ # Header Files Directory │ ├── BuzvisApp.h │ ├── CalendarManager.h │ ├── TaskManager.h │ ├── CommunicationHandler.h

└── resources/ # Images, Icons, etc. ├── icons/ └── images/