This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef _joint_mem_hpp_ | |
#define _joint_mem_hpp_ | |
#include <memory> | |
#include <cstdint> | |
typedef uint8_t joint_mem_unit; | |
template<typename Alloc = std::allocator<joint_mem_unit>> | |
class joint_mem_alloc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.santamonica.module; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.Reader; | |
import java.lang.reflect.Method; | |
import org.santamonica.R; | |
import org.xmlpull.v1.XmlPullParser; | |
import org.xmlpull.v1.XmlPullParserException; |