summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/Driver.cpp')
-rw-r--r--daemon/Driver.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/daemon/Driver.cpp b/daemon/Driver.cpp
new file mode 100644
index 0000000..c262467
--- /dev/null
+++ b/daemon/Driver.cpp
@@ -0,0 +1,15 @@
1/**
2 * Copyright (C) ARM Limited 2013. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#include "Driver.h"
10
11Driver *Driver::head = NULL;
12
13Driver::Driver() : next(head) {
14 head = this;
15}