public override bool Equals(IRosMessage ____other)
            {
                if (____other == null)
                {
                    return(false);
                }
                bool ret = true;

                nav_msgs.SetMap.Request other = (Messages.nav_msgs.SetMap.Request)____other;

                ret &= map.Equals(other.map);
                ret &= initial_pose.Equals(other.initial_pose);
                return(ret);
            }
Example #2
0
            public override bool Equals(IRosMessage ____other)
            {
                if (____other == null)
                {
                    return(false);
                }
                bool ret = true;

                nav_msgs.GetMap.Response other = (Messages.nav_msgs.GetMap.Response)____other;

                ret &= map.Equals(other.map);
                // for each SingleType st:
                //    ret &= {st.Name} == other.{st.Name};
                return(ret);
            }
        public override bool Equals(IRosMessage ____other)
        {
            if (____other == null)
            {
                return(false);
            }
            bool ret = true;

            map_msgs.ProjectedMap other = (Messages.map_msgs.ProjectedMap)____other;

            ret &= map.Equals(other.map);
            ret &= min_z == other.min_z;
            ret &= max_z == other.max_z;
            // for each SingleType st:
            //    ret &= {st.Name} == other.{st.Name};
            return(ret);
        }