mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 21:36:12 +02:00
23 lines
369 B
C++
23 lines
369 B
C++
//
|
|
// octal.h
|
|
// interface
|
|
//
|
|
// Created by Philip on 2/4/13.
|
|
// Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
#ifndef __interface__octal__
|
|
#define __interface__octal__
|
|
|
|
#include <iostream>
|
|
|
|
struct domainNode {
|
|
domainNode * child[8];
|
|
char * hostname;
|
|
char * nickname;
|
|
int domain_id;
|
|
};
|
|
|
|
|
|
|
|
#endif /* defined(__interface__octal__) */
|