summaryrefslogtreecommitdiff
path: root/indra/appearance_utility/appearance_utility.cpp
diff options
context:
space:
mode:
authorDon Kjer <don@lindenlab.com>2012-09-06 22:08:33 +0000
committerDon Kjer <don@lindenlab.com>2012-09-06 22:08:33 +0000
commit3990180c5951e68a1ecabc538be1560e0eeffaec (patch)
tree0e2205335d15e4ccc0fc6eda4ed9b5ff22768093 /indra/appearance_utility/appearance_utility.cpp
parent2e933100bb6bf27c0307dc6831142dcc0860fb7b (diff)
Adding appearance utility package
Diffstat (limited to 'indra/appearance_utility/appearance_utility.cpp')
-rw-r--r--indra/appearance_utility/appearance_utility.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/indra/appearance_utility/appearance_utility.cpp b/indra/appearance_utility/appearance_utility.cpp
new file mode 100644
index 0000000000..62b1cfd237
--- /dev/null
+++ b/indra/appearance_utility/appearance_utility.cpp
@@ -0,0 +1,37 @@
+/**
+ * @file appearance_utility.cpp
+ * @author Don Kjer <don@lindenlab.com>, Nyx Linden
+ * @brief Utility for processing avatar appearance without a full viewer implementation.
+ *
+ * $LicenseInfo:firstyear=2012&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2012, Linden Research, Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation;
+ * version 2.1 of the License only.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
+ * $/LicenseInfo$
+ */
+
+#include "linden_common.h"
+#include "llerrorcontrol.h"
+
+int main(int argc, char** argv)
+{
+ printf("Test app\n");
+ return 0;
+}
+
+